home *** CD-ROM | disk | FTP | other *** search
/ Columbia Kermit / kermit.zip / newsgroups / misc.19990725-20000114 / 000129_news@columbia.edu _Fri Oct 1 12:22:11 1999.msg < prev    next >
Internet Message Format  |  2020-01-01  |  2KB

  1. Return-Path: <news@columbia.edu>
  2. Received: from newsmaster.cc.columbia.edu (newsmaster.cc.columbia.edu [128.59.59.30])
  3.     by watsun.cc.columbia.edu (8.8.5/8.8.5) with ESMTP id MAA26809
  4.     for <kermit.misc@watsun.cc.columbia.edu>; Fri, 1 Oct 1999 12:22:10 -0400 (EDT)
  5. Received: (from news@localhost)
  6.     by newsmaster.cc.columbia.edu (8.8.5/8.8.5) id MAA23796
  7.     for kermit.misc@watsun.cc.columbia.edu; Fri, 1 Oct 1999 12:18:41 -0400 (EDT)
  8. X-Authentication-Warning: newsmaster.cc.columbia.edu: news set sender to <news> using -f
  9. From: fdc@watsun.cc.columbia.edu (Frank da Cruz)
  10. Subject: Re: Modem Reset
  11. Date: 1 Oct 1999 16:18:40 GMT
  12. Organization: Columbia University
  13. Message-ID: <7t2mt0$n7h$1@newsmaster.cc.columbia.edu>
  14. To: kermit.misc@columbia.edu
  15.  
  16. In article <37f4ccff.0@nnrp1.news.uk.psi.net>,
  17. Tim O'Shea <timos@bigfoot.com> wrote:
  18. : When using the alphapage script to send messages to a TAP Pager, the
  19. : modem is either not reset, or is reset incorrectly, specifically, it
  20. : won't allow dial-in operations after sending the pager message.  How do
  21. : I amend the alphapage script to perform a reset to stored profile 0 after
  22. : the message has been sent?
  23. You are doing this on Unix?  As you can guess, bidirectional ttys are a
  24. horrible nightmare in Unix.  Each Unix platform handles them differently,
  25. if at all, and the modem must be configured with extreme care to (inter
  26. alia) automatically restore some custom preloaded profile from NVRAM
  27. whenever a call hangs up.  And then getty (mgetty, uugetty, etc etc blah
  28. blah) is supposed to notice when this happens and seize control of the
  29. modem once again.  The dialout program should not need to know anything
  30. about this, and how could it?  Setups like this are always site-specific,
  31. platform- specific, and modem-specific.
  32.  
  33. So the real answer is to look elsewhere: in the modem configuration and in
  34. the platform's configuration for the device.
  35.  
  36. Of course you can always change the script to do something like:
  37.  
  38.   set carrier-watch off
  39.   output AT&F0S0=1\13
  40.  
  41. or somesuch after hanging up the call, but that will break if the modem
  42. changes.
  43.  
  44. - Frank